home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #16 / 2001 CD 16 (Black).iso / K-CS.DCR / 00263.ls < prev    next >
Encoding:
Text File  |  2001-10-25  |  450 b   |  22 lines

  1. global CatPunk
  2.  
  3. on new me
  4.   set CatPunk to -1
  5.   set the visible of sprite 98 to 1
  6.   set the visible of sprite 99 to 1
  7.   set the visible of sprite 82 to 1
  8.   set the visible of sprite 94 to 1
  9. end
  10.  
  11. on exitFrame
  12.   if CatPunk >= 0 then
  13.     set the memberNum of sprite 12 to (CatPunk / 2) + 481
  14.     set CatPunk to CatPunk + 1
  15.     if CatPunk >= 31 then
  16.       set the memberNum of sprite 12 to 481
  17.       set CatPunk to -1
  18.     end if
  19.   end if
  20.   go(#loop)
  21. end
  22.